projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a395d8e
)
(struct backtrace): Add debug_on_exit member.
author
Kim F. Storm
<storm@cua.dk>
Fri, 21 May 2004 23:36:38 +0000
(23:36 +0000)
committer
Kim F. Storm
<storm@cua.dk>
Fri, 21 May 2004 23:36:38 +0000
(23:36 +0000)
(Fcommand_execute): Clear it.
src/keyboard.c
patch
|
blob
|
history
diff --git
a/src/keyboard.c
b/src/keyboard.c
index 0102c5cd4383bf6106c9fa72145b9ddd53217367..ffa047b27d2c31d11cfb14687c6f33b4eb16fa5e 100644
(file)
--- a/
src/keyboard.c
+++ b/
src/keyboard.c
@@
-117,6
+117,8
@@
struct backtrace
args points to slot holding list of
unevalled args */
char evalargs;
+ /* Nonzero means call value of debugger when done with this operation. */
+ char debug_on_exit;
};
#ifdef MULTI_KBOARD
@@
-9675,6
+9677,7
@@
a special event, so ignore the prefix argument and don't clear it. */)
backtrace.args = &cmd;
backtrace.nargs = 1;
backtrace.evalargs = 0;
+ backtrace.debug_on_exit = 0;
tem = Fcall_interactively (cmd, record_flag, keys);